home *** CD-ROM | disk | FTP | other *** search
/ HyperPC 2 / HyperPC 2 - Disc 1.iso / 18_厳選!オンラインソフト130 / セレクション / wavgp13c.lzh / wg / dllsrc.lzh / wg_data.h < prev    next >
C/C++ Source or Header  |  1999-04-05  |  727b  |  25 lines

  1. #ifndef _wg_data_h
  2. #define _wg_data_h
  3.  
  4. #include <windows.h>
  5.  
  6. typedef struct {
  7.  
  8.   struct {
  9.     LPVOID data;               // データ
  10.     UINT   nData;              // データの数
  11.     UINT   nDataPerSec;        // サンプリングレート
  12.     WORD   nChannels;          // モノラル(1) ステレオ(2)
  13.     WORD   nBits;              // 量子化ビット数 (8 or 16)
  14.     UINT   x1,x2;              // 選択領域
  15.     double a;                  // データの倍率
  16.     WORD   currentChannel;     // 操作対象のチャンネル
  17.   } data[2];                   // 0: Window1  1:Window2
  18.  
  19.   short Current;               // 操作対象のウインドウの番号 (1 or 2)
  20.   HWND hwnd;                   // 親ウインドウのハンドル (1 or 2)
  21.  
  22. } WGDATA;
  23.  
  24. #endif
  25.